home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
DEMOCIAL
/
DEMOWP42.LZH
/
DEMORUN.BAT
< prev
next >
Wrap
DOS Batch File
|
1980-01-01
|
850b
|
45 lines
echo off
sg_mem 180
if errorlevel 1 goto smallmem
goto mem_ok
:smallmem
sg_notes 461 581 701
echo .
echo Not enough memory to run demo.
echo You need at least 180K bytes free.
goto done
:mem_ok
sg_dmode
if errorlevel 8 goto cmodes
if errorlevel 7 goto mono
goto cmodes
:mono
rtdemo _file_1 -xlate 14011f1f1309
goto done
:cmodes
echo .
echo Is the monitor connected to your PC
echo B&W or Color?
echo .
sg_askw 10 bc (Type a B for B&W or C for Color):
if errorlevel 255 goto timeout
:chkcode
if errorlevel 3 goto none
if errorlevel 2 goto color
if errorlevel 1 goto bw
:none
sg_notes 461 581 701
echo .
echo Please, only type the letter B or C.
echo .
sg_ask bc Type a B for B&W or a C for Color:
goto chkcode
:timeout
echo C - Assuming Color
:color
rtdemo _file_1
goto done
:bw
rtdemo _file_1 -xlate
:done